home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / selicondlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  1.6 KB  |  52 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #include "stdafx.h"
  8. #include "selicondlg.h"
  9.  
  10. typedef WINSHELLAPI BOOL (WINAPI *PFNSELECTICONDLG)(HWND hWndParent, LPTSTR pszFilename, LPDWORD pdwBufferSize, LPDWORD pdwIndex);
  11.  
  12. // This function uses an undocumented call to open the
  13. // icon selection dialog. Since this function is used by 
  14. // many programs, this is not a dangerous decision.
  15. BOOL SelectIcon(HWND hParent, LPSTR lpszFilename, DWORD dwBufferSize, DWORD *pdwIndex)
  16. {
  17.     BOOL            bResult = FALSE;
  18.     OSVERSIONINFO    vi;
  19.  
  20.     // Get OS version
  21.     vi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
  22.     GetVersionEx(&vi);
  23.  
  24.     HMODULE hDll = ::LoadLibrary("shell32.dll");
  25.  
  26.     if (hDll)    // Successfully loaded
  27.     {
  28.         PFNSELECTICONDLG SelectIconDlg = (PFNSELECTICONDLG) GetProcAddress(hDll, (LPCSTR) SELECTICONDLG_INDEX);
  29.  
  30.         if (SelectIconDlg != NULL)
  31.         {
  32.             if (vi.dwPlatformId == VER_PLATFORM_WIN32_NT) // We're running NT
  33.             {
  34.                 // Must convert to UNICODE
  35.                 LPWSTR pszWideName = new WCHAR[dwBufferSize];
  36.                 ::MultiByteToWideChar(CP_ACP, 0, lpszFilename, -1, pszWideName, dwBufferSize);
  37.                 bResult = SelectIconDlg(hParent, (LPTSTR)pszWideName, &dwBufferSize, pdwIndex);
  38.                 WideCharToMultiByte(CP_ACP, 0, pszWideName, -1, lpszFilename, dwBufferSize, NULL, NULL);
  39.                 delete[] pszWideName;
  40.             }
  41.             else
  42.                 bResult = SelectIconDlg(hParent, (LPTSTR)lpszFilename, &dwBufferSize, pdwIndex);
  43.         }
  44.  
  45.         FreeLibrary(hDll);
  46.     }
  47.  
  48.     return bResult;
  49. }
  50.  
  51.  
  52.